速報APP / 教育 / Bluetooth - µC - LCD Interface

Bluetooth - µC - LCD Interface

價格:免費

更新日期:2017-07-24

檔案大小:2.3M

目前版本:1.0

版本需求:Android 2.2 以上版本

官方網站:mailto:jpranavc9@gmail.com

Bluetooth - µC - LCD Interface(圖1)-速報App

This Uncomplicated leisure time App strictly works as an interface between bluetooth module - microcontroller - LCD built merely for practice & learning purpose to display characters on LCD screen of the Developing Board (ARM based or otherwise) through an android app. For basic knowledge, one can also run other peripherals on the Developing Board via LCD commands (in the form of normal Characters) sent via App. Configure appropriate Pinsels when a particular character is displayed. It can also be used to pair/unpair BT devices.

The stream of characters can be received through UART which obviously needs to be coded. Check the baud rate for the same. Make sure the receiving loop for array of characters is terminated by '#'.

For KEIL, e.g.

Bluetooth - µC - LCD Interface(圖2)-速報App

do

{

//Run the loop to receive the characters saving in the receiving Register through UART

ch[i]=Receive();

Bluetooth - µC - LCD Interface(圖3)-速報App

}

while(ch[i++]!='#'); //terminated with '#', display characters on the LCD

i--;

ch[i]='\0';

Bluetooth - µC - LCD Interface(圖4)-速報App

//Display on LCD.

while(*stringChars!='\0')

DisplayonLCD(*stringChars++); //Pass Chars on 0x80

So, just an uncomplicated leisure time App to play around with ARM based Developing Board :)

Bluetooth - µC - LCD Interface(圖5)-速報App

Blogs: www.jpranavc.com / www.jpranavcblog.wordpress.com

Bluetooth - µC - LCD Interface(圖6)-速報App